home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / AIncludes / AEPackObject.a < prev    next >
Encoding:
Text File  |  1996-05-01  |  1.7 KB  |  64 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        AEPackObject.a
  3. ;
  4. ;    Contains:    AppleEvents object packing Interfaces.
  5. ;
  6. ;    Version:    Technology:    System 7.5
  7. ;                Release:    Universal Interfaces 3.0d3 on Copland DR1
  8. ;
  9. ;    Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10. ;
  11. ;    Bugs?:        If you find a problem with this file, send the file and version
  12. ;                information (from above) and the problem description to:
  13. ;
  14. ;                    Internet:    apple.bugs@applelink.apple.com
  15. ;                    AppleLink:    APPLE.BUGS
  16. ;
  17. ;
  18.     IF &TYPE('__AEPACKOBJECT__') = 'UNDEFINED' THEN
  19. __AEPACKOBJECT__ SET 1
  20.  
  21.     IF &TYPE('__APPLEEVENTS__') = 'UNDEFINED' THEN
  22.     include 'AppleEvents.a'
  23.     ENDIF
  24. ;  These are the object packing routines.  
  25.     IF FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE THEN
  26. ;
  27. ; pascal OSErr CreateOffsetDescriptor(long theOffset, AEDesc *theDescriptor)
  28. ;
  29.     IF GENERATINGCFM THEN
  30.         IMPORT_CFM_FUNCTION CreateOffsetDescriptor
  31.     ENDIF
  32.  
  33. ;
  34. ; pascal OSErr CreateCompDescriptor(DescType comparisonOperator, AEDesc *operand1, AEDesc *operand2, Boolean disposeInputs, AEDesc *theDescriptor)
  35. ;
  36.     IF GENERATINGCFM THEN
  37.         IMPORT_CFM_FUNCTION CreateCompDescriptor
  38.     ENDIF
  39.  
  40. ;
  41. ; pascal OSErr CreateLogicalDescriptor(AEDescList *theLogicalTerms, DescType theLogicOperator, Boolean disposeInputs, AEDesc *theDescriptor)
  42. ;
  43.     IF GENERATINGCFM THEN
  44.         IMPORT_CFM_FUNCTION CreateLogicalDescriptor
  45.     ENDIF
  46.  
  47. ;
  48. ; pascal OSErr CreateObjSpecifier(DescType desiredClass, AEDesc *theContainer, DescType keyForm, AEDesc *keyData, Boolean disposeInputs, AEDesc *objSpecifier)
  49. ;
  50.     IF GENERATINGCFM THEN
  51.         IMPORT_CFM_FUNCTION CreateObjSpecifier
  52.     ENDIF
  53.  
  54. ;
  55. ; pascal OSErr CreateRangeDescriptor(AEDesc *rangeStart, AEDesc *rangeStop, Boolean disposeInputs, AEDesc *theDescriptor)
  56. ;
  57.     IF GENERATINGCFM THEN
  58.         IMPORT_CFM_FUNCTION CreateRangeDescriptor
  59.     ENDIF
  60.  
  61.     ENDIF
  62.     ENDIF ; __AEPACKOBJECT__ 
  63.  
  64.